home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 1998 November / Freeware November 1998.img / dist / fw_elisp-manual-19.idb / usr / freeware / info / elisp-1.z / elisp-1 (.txt)
GNU Info File  |  1998-05-26  |  38KB  |  637 lines

  1. This is Info file elisp, produced by Makeinfo-1.63 from the input file
  2. elisp.texi.
  3.    This version is the edition 2.4.2 of the GNU Emacs Lisp Reference
  4. Manual.  It corresponds to Emacs Version 19.34.
  5.    Published by the Free Software Foundation 59 Temple Place, Suite 330
  6. Boston, MA  02111-1307  USA
  7.    Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996 Free Software
  8. Foundation, Inc.
  9.    Permission is granted to make and distribute verbatim copies of this
  10. manual provided the copyright notice and this permission notice are
  11. preserved on all copies.
  12.    Permission is granted to copy and distribute modified versions of
  13. this manual under the conditions for verbatim copying, provided that the
  14. entire resulting derived work is distributed under the terms of a
  15. permission notice identical to this one.
  16.    Permission is granted to copy and distribute translations of this
  17. manual into another language, under the above conditions for modified
  18. versions, except that this permission notice may be stated in a
  19. translation approved by the Foundation.
  20.    Permission is granted to copy and distribute modified versions of
  21. this manual under the conditions for verbatim copying, provided also
  22. that the section entitled "GNU General Public License" is included
  23. exactly as in the original, and provided that the entire resulting
  24. derived work is distributed under the terms of a permission notice
  25. identical to this one.
  26.    Permission is granted to copy and distribute translations of this
  27. manual into another language, under the above conditions for modified
  28. versions, except that the section entitled "GNU General Public License"
  29. may be included in a translation approved by the Free Software
  30. Foundation instead of in the original English.
  31. File: elisp,  Node: Top,  Next: Copying,  Prev: (dir),  Up: (dir)
  32.    This Info file contains edition 2.4.2 of the GNU Emacs Lisp
  33. Reference Manual, corresponding to GNU Emacs version 19.34.
  34. * Menu:
  35. * Copying::                 Conditions for copying and changing GNU Emacs.
  36. * Introduction::            Introduction and conventions used.
  37. * Lisp Data Types::         Data types of objects in Emacs Lisp.
  38. * Numbers::                 Numbers and arithmetic functions.
  39. * Strings and Characters::  Strings, and functions that work on them.
  40. * Lists::                   Lists, cons cells, and related functions.
  41. * Sequences Arrays Vectors::  Lists, strings and vectors are called sequences.
  42.                                 Certain functions act on any kind of sequence.
  43.                                 The description of vectors is here as well.
  44. * Symbols::                 Symbols represent names, uniquely.
  45. * Evaluation::              How Lisp expressions are evaluated.
  46. * Control Structures::      Conditionals, loops, nonlocal exits.
  47. * Variables::               Using symbols in programs to stand for values.
  48. * Functions::               A function is a Lisp program
  49.                               that can be invoked from other functions.
  50. * Macros::                  Macros are a way to extend the Lisp language.
  51. * Loading::                 Reading files of Lisp code into Lisp.
  52. * Byte Compilation::        Compilation makes programs run faster.
  53. * Debugging::               Tools and tips for debugging Lisp programs.
  54. * Read and Print::          Converting Lisp objects to text and back.
  55. * Minibuffers::             Using the minibuffer to read input.
  56. * Command Loop::            How the editor command loop works,
  57.                               and how you can call its subroutines.
  58. * Keymaps::                 Defining the bindings from keys to commands.
  59. * Modes::                   Defining major and minor modes.
  60. * Documentation::           Writing and using documentation strings.
  61. * Files::                   Accessing files.
  62. * Backups and Auto-Saving:: Controlling how backups and auto-save
  63.                               files are made.
  64. * Buffers::                 Creating and using buffer objects.
  65. * Windows::                 Manipulating windows and displaying buffers.
  66. * Frames::            Making multiple X windows.
  67. * Positions::               Buffer positions and motion functions.
  68. * Markers::                 Markers represent positions and update
  69.                               automatically when the text is changed.
  70. * Text::                    Examining and changing text in buffers.
  71. * Searching and Matching::  Searching buffers for strings or regexps.
  72. * Syntax Tables::           The syntax table controls word and list parsing.
  73. * Abbrevs::                 How Abbrev mode works, and its data structures.
  74. * Processes::               Running and communicating with subprocesses.
  75. * System Interface::        Getting the user id, system type, environment
  76.                               variables, and other such things.
  77. * Display::                Parameters controlling screen usage.
  78.                               The bell.  Waiting for input.
  79. * Calendar::            Customizing the calendar and diary.
  80. Appendices
  81. * Tips::                    Advice for writing Lisp programs.
  82. * GNU Emacs Internals::     Building and dumping Emacs;
  83.                               internal data structures.
  84. * Standard Errors::         List of all error symbols.
  85. * Standard Buffer-Local Variables::  List of variables local in all buffers.
  86. * Standard Keymaps::        List of standard keymaps.
  87. * Standard Hooks::          List of standard hook variables.
  88. * Index::                   Index including concepts, functions, variables,
  89.                               and other terms.
  90.       -- The Detailed Node Listing --
  91. Here are other nodes that are inferiors of those already listed,
  92. mentioned here so you can get to them in one step:
  93. Introduction
  94. * Caveats::                 Flaws and a request for help.
  95. * Lisp History::            Emacs Lisp is descended from Maclisp.
  96. * Conventions::             How the manual is formatted.
  97. * Acknowledgements::        The authors, editors, and sponsors of this manual.
  98. Conventions
  99. * Some Terms::              Explanation of terms we use in this manual.
  100. * nil and t::               How the symbols `nil' and `t' are used.
  101. * Evaluation Notation::     The format we use for examples of evaluation.
  102. * Printing Notation::       The format we use for examples that print output.
  103. * Error Messages::          The format we use for examples of errors.
  104. * Buffer Text Notation::    The format we use for buffer contents in examples.
  105. * Format of Descriptions::  Notation for describing functions, variables, etc.
  106. Format of Descriptions
  107. * A Sample Function Description::
  108. * A Sample Variable Description::
  109. Lisp Data Types
  110. * Printed Representation::  How Lisp objects are represented as text.
  111. * Comments::                Comments and their formatting conventions.
  112. * Programming Types::       Types found in all Lisp systems.
  113. * Editing Types::           Types specific to Emacs.
  114. * Type Predicates::         Tests related to types.
  115. * Equality Predicates::     Tests of equality between any two objects.
  116. Programming Types
  117. * Integer Type::        Numbers without fractional parts.
  118. * Floating Point Type:: Numbers with fractional parts and with a large range.
  119. * Character Type::      The representation of letters, numbers and
  120.                         control characters.
  121. * Sequence Type::       Both lists and arrays are classified as sequences.
  122. * Cons Cell Type::      Cons cells, and lists (which are made from cons cells).
  123. * Array Type::          Arrays include strings and vectors.
  124. * String Type::         An (efficient) array of characters.
  125. * Vector Type::         One-dimensional arrays.
  126. * Symbol Type::         A multi-use object that refers to a function,
  127.                         variable, property list, or itself.
  128. * Function Type::       A piece of executable code you can call from elsewhere.
  129. * Macro Type::          A method of expanding an expression into another
  130.                           expression, more fundamental but less pretty.
  131. * Primitive Function Type::     A function written in C, callable from Lisp.
  132. * Byte-Code Type::      A function written in Lisp, then compiled.
  133. * Autoload Type::       A type used for automatically loading seldom-used
  134.                         functions.
  135. List Type
  136. * Dotted Pair Notation::    An alternative syntax for lists.
  137. * Association List Type::   A specially constructed list.
  138. Editing Types
  139. * Buffer Type::             The basic object of editing.
  140. * Window Type::             What makes buffers visible.
  141. * Window Configuration Type::Save what the screen looks like.
  142. * Marker Type::             A position in a buffer.
  143. * Process Type::            A process running on the underlying OS.
  144. * Stream Type::             Receive or send characters.
  145. * Keymap Type::             What function a keystroke invokes.
  146. * Syntax Table Type::       What a character means.
  147. Numbers
  148. * Integer Basics::            Representation and range of integers.
  149. * Float Basics::          Representation and range of floating point.
  150. * Predicates on Numbers::     Testing for numbers.
  151. * Comparison of Numbers::     Equality and inequality predicates.
  152. * Arithmetic Operations::     How to add, subtract, multiply and divide.
  153. * Bitwise Operations::        Logical and, or, not, shifting.
  154. * Numeric Conversions::          Converting float to integer and vice versa.
  155. * Math Functions::            Trig, exponential and logarithmic functions.
  156. * Random Numbers::            Obtaining random integers, predictable or not.
  157. Strings and Characters
  158. * String Basics::           Basic properties of strings and characters.
  159. * Predicates for Strings::  Testing whether an object is a string or char.
  160. * Creating Strings::        Functions to allocate new strings.
  161. * Text Comparison::         Comparing characters or strings.
  162. * String Conversion::       Converting characters or strings and vice versa.
  163. * Formatting Strings::      `format': Emacs's analog of `printf'.
  164. * Character Case::          Case conversion functions.
  165. Lists
  166. * Cons Cells::              How lists are made out of cons cells.
  167. * Lists as Boxes::          Graphical notation to explain lists.
  168. * List-related Predicates:: Is this object a list?  Comparing two lists.
  169. * List Elements::           Extracting the pieces of a list.
  170. * Building Lists::          Creating list structure.
  171. * Modifying Lists::         Storing new pieces into an existing list.
  172. * Sets And Lists::          A list can represent a finite mathematical set.
  173. * Association Lists::       A list can represent a finite relation or mapping.
  174. Modifying Existing List Structure
  175. * Setcar::                  Replacing an element in a list.
  176. * Setcdr::                  Replacing part of the list backbone.
  177.                               This can be used to remove or add elements.
  178. * Rearrangement::           Reordering the elements in a list; combining lists.
  179. Sequences, Arrays, and Vectors
  180. * Sequence Functions::      Functions that accept any kind of sequence.
  181. * Arrays::                  Characteristics of arrays in Emacs Lisp.
  182. * Array Functions::         Functions specifically for arrays.
  183. * Vectors::                 Functions specifically for vectors.
  184. Symbols
  185. * Symbol Components::       Symbols have names, values, function definitions
  186.                               and property lists.
  187. * Definitions::             A definition says how a symbol will be used.
  188. * Creating Symbols::        How symbols are kept unique.
  189. * Property Lists::          Each symbol has a property list
  190.                               for recording miscellaneous information.
  191. Evaluation
  192. * Intro Eval::              Evaluation in the scheme of things.
  193. * Eval::                    How to invoke the Lisp interpreter explicitly.
  194. * Forms::                   How various sorts of objects are evaluated.
  195. * Quoting::                 Avoiding evaluation (to put constants in
  196.                               the program).
  197. Kinds of Forms
  198. * Self-Evaluating Forms::   Forms that evaluate to themselves.
  199. * Symbol Forms::            Symbols evaluate as variables.
  200. * Classifying Lists::       How to distinguish various sorts of list forms.
  201. * Function Forms::          Forms that call functions.
  202. * Macro Forms::             Forms that call macros.
  203. * Special Forms::           "Special forms" are idiosyncratic primitives,
  204.                               most of them extremely important.
  205. * Autoloading::             Functions set up to load files
  206.                               containing their real definitions.
  207. Control Structures
  208. * Sequencing::              Evaluation in textual order.
  209. * Conditionals::            `if', `cond'.
  210. * Combining Conditions::    `and', `or', `not'.
  211. * Iteration::               `while' loops.
  212. * Nonlocal Exits::          Jumping out of a sequence.
  213. Nonlocal Exits
  214. * Catch and Throw::         Nonlocal exits for the program's own purposes.
  215. * Examples of Catch::       Showing how such nonlocal exits can be written.
  216. * Errors::                  How errors are signaled and handled.
  217. * Cleanups::                Arranging to run a cleanup form if an
  218.                               error happens.
  219. Errors
  220. * Signaling Errors::        How to report an error.
  221. * Processing of Errors::    What Emacs does when you report an error.
  222. * Handling Errors::         How you can trap errors and continue execution.
  223. * Error Symbols::           How errors are classified for trapping them.
  224. Variables
  225. * Global Variables::        Variable values that exist permanently, everywhere.
  226. * Constant Variables::      Certain "variables" have values that never change.
  227. * Local Variables::         Variable values that exist only temporarily.
  228. * Void Variables::          Symbols that lack values.
  229. * Defining Variables::      A definition says a symbol is used as a variable.
  230. * Accessing Variables::     Examining values of variables whose names
  231.                               are known only at run time.
  232. * Setting Variables::       Storing new values in variables.
  233. * Variable Scoping::        How Lisp chooses among local and global values.
  234. * Buffer-Local Variables::  Variable values in effect only in one buffer.
  235. Scoping Rules for Variable Bindings
  236. * Scope::                   Scope means where in the program a value
  237.                               is visible.  Comparison with other languages.
  238. * Extent::                  Extent means how long in time a value exists.
  239. * Impl of Scope::           Two ways to implement dynamic scoping.
  240. * Using Scoping::           How to use dynamic scoping carefully and
  241.                               avoid problems.
  242. Buffer-Local Variables
  243. * Intro to Buffer-Local::   Introduction and concepts.
  244. * Creating Buffer-Local::   Creating and destroying buffer-local bindings.
  245. * Default Value::           The default value is seen in buffers
  246.                               that don't have their own local values.
  247. Functions
  248. * What Is a Function::      Lisp functions vs primitives; terminology.
  249. * Lambda Expressions::      How functions are expressed as Lisp objects.
  250. * Function Names::          A symbol can serve as the name of a function.
  251. * Defining Functions::      Lisp expressions for defining functions.
  252. * Calling Functions::       How to use an existing function.
  253. * Mapping Functions::       Applying a function to each element of a list, etc.
  254. * Anonymous Functions::     Lambda-expressions are functions with no names.
  255. * Function Cells::          Accessing or setting the function definition
  256.                               of a symbol.
  257. * Related Topics::          Cross-references to specific Lisp primitives
  258.                               that have a special bearing on how
  259.                               functions work.
  260. Lambda Expressions
  261. * Lambda Components::       The parts of a lambda expression.
  262. * Simple Lambda::           A simple example.
  263. * Argument List::           Details and special features of argument lists.
  264. * Function Documentation::  How to put documentation in a function.
  265. Macros
  266. * Simple Macro::            A basic example.
  267. * Expansion::               How, when and why macros are expanded.
  268. * Compiling Macros::        How macros are expanded by the compiler.
  269. * Defining Macros::         How to write a macro definition.
  270. * Backquote::               Easier construction of list structure.
  271. * Problems with Macros::    Don't evaluate the macro arguments too many times.
  272.                               Don't hide the user's variables.
  273. Loading
  274. * How Programs Do Loading:: The `load' function and others.
  275. * Autoload::                Setting up a function to autoload.
  276. * Named Features::          Loading a library if it isn't already loaded.
  277. * Repeated Loading::        Precautions about loading a file twice.
  278. Byte Compilation
  279. * Compilation Functions::   Byte compilation functions.
  280. * Disassembly::             Disassembling byte-code; how to read byte-code.
  281. Debugging Lisp Programs
  282. * Debugger::                How the Emacs Lisp debugger is implemented.
  283. * Syntax Errors::           How to find syntax errors.
  284. * Compilation Errors::      How to find errors that show up in
  285.                               byte compilation.
  286. * Edebug::                  A source-level Emacs Lisp debugger.
  287. The Lisp Debugger
  288. * Error Debugging::         Entering the debugger when an error happens.
  289. * Function Debugging::      Entering it when a certain function is called.
  290. * Explicit Debug::          Entering it at a certain point in the program.
  291. * Using Debugger::          What the debugger does; what you see while in it.
  292. * Debugger Commands::       Commands used while in the debugger.
  293. * Invoking the Debugger::   How to call the function `debug'.
  294. * Internals of Debugger::   Subroutines of the debugger, and global variables.
  295. Debugging Invalid Lisp Syntax
  296. * Excess Open::             How to find a spurious open paren or missing close.
  297. * Excess Close::            How to find a spurious close paren or missing open.
  298. Reading and Printing Lisp Objects
  299. * Streams Intro::           Overview of streams, reading and printing.
  300. * Input Streams::           Various data types that can be used as
  301.                               input streams.
  302. * Input Functions::         Functions to read Lisp objects from text.
  303. * Output Streams::          Various data types that can be used as
  304.                               output streams.
  305. * Output Functions::        Functions to print Lisp objects as text.
  306. Minibuffers
  307. * Intro to Minibuffers::    Basic information about minibuffers.
  308. * Text from Minibuffer::    How to read a straight text string.
  309. * Object from Minibuffer::  How to read a Lisp object or expression.
  310. * Completion::              How to invoke and customize completion.
  311. * Yes-or-No Queries::       Asking a question with a simple answer.
  312. * Minibuffer Misc::         Various customization hooks and variables.
  313. Completion
  314. * Basic Completion::        Low-level functions for completing strings.
  315.                               (These are too low level to use the minibuffer.)
  316. * Minibuffer Completion::   Invoking the minibuffer with completion.
  317. * Completion Commands::     Minibuffer commands that do completion.
  318. * High-Level Completion::   Convenient special cases of completion
  319.                               (reading buffer name, file name, etc.)
  320. * Reading File Names::      Using completion to read file names.
  321. * Programmed Completion::   Finding the completions for a given file name.
  322. Command Loop
  323. * Command Overview::    How the command loop reads commands.
  324. * Defining Commands::   Specifying how a function should read arguments.
  325. * Interactive Call::    Calling a command, so that it will read arguments.
  326. * Command Loop Info::   Variables set by the command loop for you to examine.
  327. * Input Events::    What input looks like when you read it.
  328. * Reading Input::       How to read input events from the keyboard or mouse.
  329. * Waiting::             Waiting for user input or elapsed time.
  330. * Quitting::            How `C-g' works.  How to catch or defer quitting.
  331. * Prefix Command Arguments::    How the commands to set prefix args work.
  332. * Recursive Editing::   Entering a recursive edit,
  333.                           and why you usually shouldn't.
  334. * Disabling Commands::  How the command loop handles disabled commands.
  335. * Command History::     How the command history is set up, and how accessed.
  336. * Keyboard Macros::     How keyboard macros are implemented.
  337. Defining Commands
  338. * Using Interactive::       General rules for `interactive'.
  339. * Interactive Codes::       The standard letter-codes for reading arguments
  340.                               in various ways.
  341. * Interactive Examples::    Examples of how to read interactive arguments.
  342. Keymaps
  343. * Keymap Terminology::            Definitions of terms pertaining to keymaps.
  344. * Format of Keymaps::        What a keymap looks like as a Lisp object.
  345. * Creating Keymaps::         Functions to create and copy keymaps.
  346. * Inheritance and Keymaps::    How one keymap can inherit the bindings
  347.                   of another keymap.
  348. * Prefix Keys::                 Defining a key with a keymap as its definition.
  349. * Menu Keymaps::        A keymap can define a menu for X windows
  350.                   or for use from the terminal.
  351. * Active Keymaps::            Each buffer has a local keymap
  352.                                   to override the standard (global) bindings.
  353.                 Each minor mode can also override them.
  354. * Key Lookup::                  How extracting elements from keymaps works.
  355. * Functions for Key Lookup::    How to request key lookup.
  356. * Changing Key Bindings::       Redefining a key in a keymap.
  357. * Key Binding Commands::        Interactive interfaces for redefining keys.
  358. * Scanning Keymaps::            Looking through all keymaps, for printing help.
  359. Major and Minor Modes
  360. * Major Modes::             Defining major modes.
  361. * Minor Modes::             Defining minor modes.
  362. * Mode Line Format::        Customizing the text that appears in the mode line.
  363. * Hooks::                   How to use hooks; how to write code that
  364.                               provides hooks.
  365. Major Modes
  366. * Major Mode Conventions::  Coding conventions for keymaps, etc.
  367. * Example Major Modes::     Text mode and Lisp modes.
  368. * Auto Major Mode::         How Emacs chooses the major mode automatically.
  369. * Mode Help::               Finding out how to use a mode.
  370. Minor Modes
  371. * Minor Mode Conventions::  Tips for writing a minor mode.
  372. * Keymaps and Minor Modes:: How a minor mode can have its own keymap.
  373. Mode Line Format
  374. * Mode Line Data::          The data structure that controls the mode line.
  375. * Mode Line Variables::     Variables used in that data structure.
  376. * %-Constructs::            Putting information into a mode line.
  377. Documentation
  378. * Documentation Basics::    Good style for doc strings.
  379.                               Where to put them.  How Emacs stores them.
  380. * Accessing Documentation:: How Lisp programs can access doc strings.
  381. * Keys in Documentation::   Substituting current key bindings.
  382. * Describing Characters::   Making printable descriptions of
  383.                               non-printing characters and key sequences.
  384. * Help Functions::          Subroutines used by Emacs help facilities.
  385. Files
  386. * Visiting Files::          Reading files into Emacs buffers for editing.
  387. * Saving Buffers::          Writing changed buffers back into files.
  388. * Reading from Files::      Reading files into other buffers.
  389. * Writing to Files::        Writing new files from parts of buffers.
  390. * File Locks::              Locking and unlocking files, to prevent
  391.                                 simultaneous editing by two people.
  392. * Information about Files::   Testing existence, accessibility, size of files.
  393. * Contents of Directories::   Getting a list of the files in a directory.
  394. * Changing File Attributes::  Renaming files, changing protection, etc.
  395. * File Names::                Decomposing and expanding file names.
  396. Visiting Files
  397. * Visiting Functions::      The usual interface functions for visiting.
  398. * Subroutines of Visiting:: Lower-level subroutines that they use.
  399. Information about Files
  400. * Testing Accessibility::   Is a given file readable?  Writable?
  401. * Kinds of Files::          Is it a directory?  A link?
  402. * File Attributes::         How large is it?  Any other names?  Etc.
  403. File Names
  404. * File Name Components::    The directory part of a file name, and the rest.
  405. * Directory Names::         A directory's name as a directory
  406.                               is different from its name as a file.
  407. * Relative File Names::     Some file names are relative to a
  408.                               current directory.
  409. * File Name Expansion::     Converting relative file names to absolute ones.
  410. * Unique File Names::       Generating names for temporary files.
  411. * File Name Completion::    Finding the completions for a given file name.
  412. Backups and Auto-Saving
  413. * Backup Files::            How backup files are made; how their names
  414.                               are chosen.
  415. * Auto-Saving::             How auto-save files are made; how their
  416.                               names are chosen.
  417. * Reverting::               `revert-buffer', and how to customize
  418.                               what it does.
  419. Backup Files
  420. * Making Backups::          How Emacs makes backup files, and when.
  421. * Rename or Copy::          Two alternatives: renaming the old file
  422.                               or copying it.
  423. * Numbered Backups::        Keeping multiple backups for each source file.
  424. * Backup Names::            How backup file names are computed; customization.
  425. Buffers
  426. * Buffer Basics::           What is a buffer?
  427. * Buffer Names::            Accessing and changing buffer names.
  428. * Buffer File Name::        The buffer file name indicates which file
  429.                               is visited.
  430. * Buffer Modification::     A buffer is "modified" if it needs to be saved.
  431. * Modification Time::       Determining whether the visited file was changed
  432.                               "behind Emacs's back".
  433. * Read Only Buffers::       Modifying text is not allowed in a
  434.                               read-only buffer.
  435. * The Buffer List::         How to look at all the existing buffers.
  436. * Creating Buffers::        Functions that create buffers.
  437. * Killing Buffers::         Buffers exist until explicitly killed.
  438. * Current Buffer::          Designating a buffer as current
  439.                               so primitives will access its contents.
  440. Windows
  441. * Basic Windows::           Basic information on using windows.
  442. * Splitting Windows::       Splitting one window into two windows.
  443. * Deleting Windows::        Deleting a window gives its space to other windows.
  444. * Selecting Windows::       The selected window is the one that you edit in.
  445. * Cyclic Window Ordering::  Moving around the existing windows.
  446. * Buffers and Windows::     Each window displays the contents of a buffer.
  447. * Displaying Buffers::      Higher-lever functions for displaying a buffer
  448.                               and choosing a window for it.
  449. * Window Point::            Each window has its own location of point.
  450. * Window Start::            The display-start position controls which text
  451.                               is on-screen in the window.
  452. * Vertical Scrolling::      Moving text up and down in the window.
  453. * Scrolling Hooks::         Hooks that run when you scroll a window.
  454. * Horizontal Scrolling::    Moving text sideways on the window.
  455. * Size of Window::          Accessing the size of a window.
  456. * Resizing Windows::        Changing the size of a window.
  457. * Window Configurations::   Saving and restoring the state of the screen.
  458. Frames
  459. * Creating Frames::        Creating additional frames.
  460. * Multiple Displays::       Creating frames on other X displays.
  461. * Frame Parameters::        Controlling frame size, position, font, etc.
  462. * Frame Titles::            Automatic updating of frame titles.
  463. * Deleting Frames::        Frames last until explicitly deleted.
  464. * Finding All Frames::        How to examine all existing frames.
  465. * Frames and Windows::        A frame contains windows;
  466.                   display of text always works through windows.
  467. * Minibuffers and Frames::  How a frame finds the minibuffer to use.
  468. * Input Focus::            Specifying the selected frame.
  469. * Visibility of Frames::    Frames may be visible or invisible, or icons.
  470. * Raising and Lowering::    Raising a frame makes it hide other X windows;
  471.                   lowering it makes the others hide them.
  472. * Frame Configurations::    Saving the state of all frames.
  473. * Mouse Tracking::        Getting events that say when the mouse moves.
  474. * Mouse Position::        Asking where the mouse is, or moving it.
  475. * Pop-Up Menus::        Displaying a menu for the user to select from.
  476. * Dialog Boxes::            Displaying a box to ask yes or no.
  477. * Pointer Shapes::          Specifying the shape of the mouse pointer.
  478. * X Selections::        Transferring text to and from other X clients.
  479. * Color Names::                Getting the definitions of color names.
  480. * Resources::            Getting resource values from the server.
  481. * Server Data::            Getting info about the X server.
  482. Positions
  483. * Point::                   The special position where editing takes place.
  484. * Motion::                  Changing point.
  485. * Excursions::              Temporary motion and buffer changes.
  486. * Narrowing::               Restricting editing to a portion of the buffer.
  487. Motion
  488. * Character Motion::        Moving in terms of characters.
  489. * Word Motion::             Moving in terms of words.
  490. * Buffer End Motion::       Moving to the beginning or end of the buffer.
  491. * Text Lines::              Moving in terms of lines of text.
  492. * Screen Lines::            Moving in terms of lines as displayed.
  493. * List Motion::             Moving by parsing lists and sexps.
  494. * Skipping Characters::     Skipping characters belonging to a certain set.
  495. Markers
  496. * Overview of Markers::     The components of a marker, and how it relocates.
  497. * Predicates on Markers::   Testing whether an object is a marker.
  498. * Creating Markers::        Making empty markers or markers at certain places.
  499. * Information from Markers::  Finding the marker's buffer or character
  500.                                 position.
  501. * Changing Markers::        Moving the marker to a new buffer or position.
  502. * The Mark::                How "the mark" is implemented with a marker.
  503. * The Region::              How to access "the region".
  504. * Near Point::              Examining text in the vicinity of point.
  505. * Buffer Contents::         Examining text in a general fashion.
  506. * Insertion::               Adding new text to a buffer.
  507. * Commands for Insertion::  User-level commands to insert text.
  508. * Deletion::                Removing text from a buffer.
  509. * User-Level Deletion::     User-level commands to delete text.
  510. * The Kill Ring::           Where removed text sometimes is saved for
  511.                               later use.
  512. * Undo::                    Undoing changes to the text of a buffer.
  513. * Auto Filling::            How auto-fill mode is implemented to break lines.
  514. * Filling::                 Functions for explicit filling.
  515. * Margins::                 How to specify margins for filling commands.
  516. * Sorting::                 Functions for sorting parts of the buffer.
  517. * Indentation::             Functions to insert or adjust indentation.
  518. * Columns::                 Computing horizontal positions, and using them.
  519. * Case Changes::            Case conversion of parts of the buffer.
  520. * Text Properties::         Assigning Lisp property lists to text characters.
  521. * Substitution::            Replacing a given character wherever it appears.
  522. * Transposition::           Swapping two portions of a buffer.
  523. * Registers::               How registers are implemented.  Accessing
  524.                               the text or position stored in a register.
  525. * Change Hooks::            Supplying functions to be run when text is changed.
  526. The Kill Ring
  527. * Kill Ring Concepts::      What text looks like in the kill ring.
  528. * Kill Functions::          Functions that kill text.
  529. * Yank Commands::           Commands that access the kill ring.
  530. * Low-Level Kill Ring::        Functions and variables for kill ring access.
  531. * Internals of Kill Ring::  Variables that hold kill-ring data.
  532. Indentation
  533. * Primitive Indent::        Functions used to count and insert indentation.
  534. * Mode-Specific Indent::    Customize indentation for different modes.
  535. * Region Indent::           Indent all the lines in a region.
  536. * Relative Indent::         Indent the current line based on previous lines.
  537. * Indent Tabs::             Adjustable, typewriter-like tab stops.
  538. * Motion by Indent::        Move to first non-blank character.
  539. Text Properties
  540. * Examining Properties::    Looking at the properties of one character.
  541. * Changing Properties::        Setting the properties of a range of text.
  542. * Property Search::        Searching for where a property changes value.
  543. * Special Properties::        Particular properties with special meanings.
  544. * Format Properties::       Properties for representing formatting of text.
  545. * Sticky Properties::       How inserted text gets properties from
  546.                               neighboring text.
  547. * Saving Properties::       Saving text properties in files, and reading
  548.                               them back.
  549. * Lazy Properties::         Computing text properties in a lazy fashion
  550.                               only when text is examined.
  551. * Not Intervals::        Why text properties do not use
  552.                   Lisp-visible text intervals.
  553. Searching and Matching
  554. * String Search::           Search for an exact match.
  555. * Regular Expressions::     Describing classes of strings.
  556. * Regexp Search::           Searching for a match for a regexp.
  557. * Match Data::              Finding out which part of the text matched
  558.                               various parts of a regexp, after regexp search.
  559. * Saving Match Data::       Saving and restoring this information.
  560. * Standard Regexps::        Useful regexps for finding sentences, pages,...
  561. * Searching and Case::      Case-independent or case-significant searching.
  562. Regular Expressions
  563. * Syntax of Regexps::       Rules for writing regular expressions.
  564. * Regexp Example::          Illustrates regular expression syntax.
  565. Syntax Tables
  566. * Syntax Descriptors::      How characters are classified.
  567. * Syntax Table Functions::  How to create, examine and alter syntax tables.
  568. * Parsing Expressions::     Parsing balanced expressions
  569.                               using the syntax table.
  570. * Standard Syntax Tables::  Syntax tables used by various major modes.
  571. * Syntax Table Internals::  How syntax table information is stored.
  572. Syntax Descriptors
  573. * Syntax Class Table::      Table of syntax classes.
  574. * Syntax Flags::            Additional flags each character can have.
  575. Abbrevs And Abbrev Expansion
  576. * Abbrev Mode::             Setting up Emacs for abbreviation.
  577. * Tables: Abbrev Tables.    Creating and working with abbrev tables.
  578. * Defining Abbrevs::        Specifying abbreviations and their expansions.
  579. * Files: Abbrev Files.      Saving abbrevs in files.
  580. * Expansion: Abbrev Expansion.  Controlling expansion; expansion subroutines.
  581. * Standard Abbrev Tables::  Abbrev tables used by various major modes.
  582. Processes
  583. * Subprocess Creation::     Functions that start subprocesses.
  584. * Synchronous Processes::   Details of using synchronous subprocesses.
  585. * Asynchronous Processes::  Starting up an asynchronous subprocess.
  586. * Deleting Processes::      Eliminating an asynchronous subprocess.
  587. * Process Information::     Accessing run-status and other attributes.
  588. * Input to Processes::      Sending input to an asynchronous subprocess.
  589. * Signals to Processes::    Stopping, continuing or interrupting
  590.                               an asynchronous subprocess.
  591. * Output from Processes::   Collecting output from an asynchronous subprocess.
  592. * Sentinels::               Sentinels run when process run-status changes.
  593. * Network::                 Opening network connections.
  594. Receiving Output from Processes
  595. * Process Buffers::         If no filter, output is put in a buffer.
  596. * Filter Functions::        Filter functions accept output from the process.
  597. * Accepting Output::        How to wait until process output arrives.
  598. Operating System Interface
  599. * Starting Up::             Customizing Emacs start-up processing.
  600. * Getting Out::             How exiting works (permanent or temporary).
  601. * System Environment::      Distinguish the name and kind of system.
  602. * Terminal Input::          Recording terminal input for debugging.
  603. * Terminal Output::         Recording terminal output for debugging.
  604. * Flow Control::            How to turn output flow control on or off.
  605. * Batch Mode::              Running Emacs without terminal interaction.
  606. Starting Up Emacs
  607. * Start-up Summary::        Sequence of actions Emacs performs at start-up.
  608. * Init File::               Details on reading the init file (`.emacs').
  609. * Terminal-Specific::       How the terminal-specific Lisp file is read.
  610. * Command Line Arguments::  How command line arguments are processed,
  611.                               and how you can customize them.
  612. Getting out of Emacs
  613. * Killing Emacs::           Exiting Emacs irreversibly.
  614. * Suspending Emacs::        Exiting Emacs reversibly.
  615. Emacs Display
  616. * Refresh Screen::          Clearing the screen and redrawing everything on it.
  617. * Truncation::              Folding or wrapping long text lines.
  618. * The Echo Area::           Where messages are displayed.
  619. * Selective Display::       Hiding part of the buffer text.
  620. * Overlay Arrow::           Display of an arrow to indicate position.
  621. * Temporary Displays::      Displays that go away automatically.
  622. * Waiting::                 Forcing display update and waiting for user.
  623. * Blinking::                How Emacs shows the matching open parenthesis.
  624. * Usual Display::        How control characters are displayed.
  625. * Beeping::                 Audible signal to the user.
  626. * Window Systems::          Which window system is being used.
  627. GNU Emacs Internals
  628. * Building Emacs::          How to preload Lisp libraries into Emacs.
  629. * Pure Storage::            A kludge to make preloaded Lisp functions sharable.
  630. * Garbage Collection::      Reclaiming space for Lisp objects no longer used.
  631. * Object Internals::        Data formats of buffers, windows, processes.
  632. * Writing Emacs Primitives::  Writing C code for Emacs.
  633. Object Internals
  634. * Buffer Internals::        Components of a buffer structure.
  635. * Window Internals::        Components of a window structure.
  636. * Process Internals::       Components of a process structure.
  637.